<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * Polyfill CSS object-fit
 * http://helloanselm.com/object-fit
 *
 * @author: Anselm Hannemann &lt;hello@anselm-hannemann.com&gt;
 * @author: Christian "Schepp" Schaefer &lt;schaepp@gmx.de&gt;
 * @version: 0.3.4
 *
 */

x-object-fit {
	position: relative !important;
	display: inline-block !important;
}

x-object-fit &gt; .x-object-fit-taller,
x-object-fit &gt; .x-object-fit-wider {
	position: absolute !important;
	left: -100% !important;
	right: -100% !important;
	top: -100% !important;
	bottom: -100% !important;
	margin: auto !important;
}

.x-object-fit-none &gt; .x-object-fit-taller,
.x-object-fit-none &gt; .x-object-fit-wider {
	width: auto !important;
	height: auto !important;
}

.x-object-fit-fill &gt; .x-object-fit-taller,
.x-object-fit-fill &gt; .x-object-fit-wider {
	width: 100% !important;
	height: 100% !important;
}

.x-object-fit-contain &gt; .x-object-fit-taller {
	width: auto !important;
	height: 100% !important;
}

.x-object-fit-contain &gt; .x-object-fit-wider {
	width: 100% !important;
	height: auto !important;
}

.x-object-fit-cover &gt; .x-object-fit-taller,
.x-object-fit-cover &gt; .x-object-fit-wider {
	max-width: none !important;
	max-height: none !important;
}

.x-object-fit-cover &gt; .x-object-fit-taller {
	width: 100% !important;
	height: auto !important;
	max-width: none !important;
}

.x-object-fit-cover &gt; .x-object-fit-wider {
	width: auto !important;
	height: 100% !important;
	max-width: none !important;
}

.x-object-position-top &gt; .x-object-fit-taller,
.x-object-position-top &gt; .x-object-fit-wider {
	top: 0 !important;
	bottom: auto !important;
}

.x-object-position-right &gt; .x-object-fit-taller,
.x-object-position-right &gt; .x-object-fit-wider {
	left: auto !important;
	right: 0 !important;
}

.x-object-position-bottom &gt; .x-object-fit-taller,
.x-object-position-bottom &gt; .x-object-fit-wider {
	top: auto !important;
	bottom: 0 !important;
}

.x-object-position-left &gt; .x-object-fit-taller,
.x-object-position-left &gt; .x-object-fit-wider {
	left: 0 !important;
	right: auto !important;
}

</pre></body></html>